home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / amiexpress / source / ae / code / acp3.00 / includes / semis_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-18  |  439 b   |  34 lines

  1. /* Prototypes for functions defined in
  2. semis.c
  3.  */
  4.  
  5.  
  6. #ifndef __NOPROTO
  7.  
  8. #ifndef __PROTO
  9. #define __PROTO(a) a
  10. #endif
  11.  
  12. #else
  13. #ifndef __PROTO
  14. #define __PROTO(a) ()
  15.  
  16. #endif
  17. #endif
  18.  
  19.  
  20. extern struct MultiPort *SemiNodes;
  21.  
  22. extern struct SinglePort *SingleNode;
  23.  
  24. extern char MultiName[];
  25.  
  26. extern char SingleName[];
  27.  
  28. void CreateSemaphores __PROTO((void));
  29.  
  30. void InitSemaSemiNodes __PROTO((struct MultiPort *));
  31.  
  32. void ShutDownSemis __PROTO((void));
  33.  
  34.